home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #1 / Ham Radio 2000.iso / ham2000 / hf / dsp / source / makefile < prev    next >
Encoding:
Makefile  |  1990-12-18  |  359 b   |  29 lines

  1. #
  2. #  Enviromental constants
  3. #
  4.  
  5. # this directory must contain the Motorola i/o port declaration files
  6. incdir=c:\cross\56000\include
  7.  
  8.  
  9. #
  10. #  Production rules
  11. #
  12. .asm.lnk:
  13.     asm56000 -c -i$(incdir) $*
  14.  
  15. .lnk.lod:
  16.     lnk56000 -c -b$*.lod $**
  17.  
  18.  
  19. #
  20. #  Dependencies
  21. #
  22. tst.lnk:    tst.asm
  23.  
  24. mem.lnk:    mem.asm
  25.  
  26. tst.lod:    tst.lnk
  27.  
  28. mem.lod:    mem.lnk
  29.